home *** CD-ROM | disk | FTP | other *** search
/ Word Play Farm / Word Play Farm.iso / pc / movies / rwrdfinl.dxr / 00158.ls < prev    next >
Encoding:
Text File  |  1996-07-26  |  442 b   |  21 lines

  1. on mouseUp
  2.   global lastName
  3.   set f to value(lastName) - 1
  4.   if f = 0 then
  5.     set f to 6
  6.   end if
  7.   set w to string(f)
  8.   set fld to lastName & "Fld"
  9.   repeat with t = 2 to 7
  10.     put the castNum of sprite t into line t of field fld
  11.   end repeat
  12.   go(w)
  13.   set fld to lastName & "Fld"
  14.   repeat with t = 2 to 7
  15.     puppetSprite(t, 1)
  16.     set x to value(line t of field fld)
  17.     set the castNum of sprite t to x
  18.   end repeat
  19.   updateStage()
  20. end
  21.